page.tsx 807 B

12345678910111213141516171819202122232425
  1. import Link from "next/link";
  2. import { Layout, LayoutContent, LayoutDescription, LayoutHeader, LayoutTitle } from "@/features/page/layout";
  3. import { buttonVariants } from "@/components/ui/button";
  4. export default function SuccessPaymentPage() {
  5. return (
  6. <>
  7. <Layout>
  8. <LayoutHeader>
  9. <LayoutTitle>Thank You for Your Purchase!</LayoutTitle>
  10. <LayoutDescription>
  11. Your payment was successful! You now have full access to all our premium resources. If you have any questions, we&apos;re here
  12. to help.
  13. </LayoutDescription>
  14. </LayoutHeader>
  15. <LayoutContent>
  16. <Link className={buttonVariants({ size: "large" })} href="/">
  17. Get Started
  18. </Link>
  19. </LayoutContent>
  20. </Layout>
  21. </>
  22. );
  23. }